home *** CD-ROM | disk | FTP | other *** search
- #****************************************************************************#
- # #
- # Make file for WATCOM C/C++ 32 Bit #
- # #
- #****************************************************************************#
-
- #name the compiler
-
- CC = wcc386
- CFLAGS = -mf -bt=dos -3r -omaxnte=16384 -fp3 -zp2 -dUSE386 #-d2
-
- #linker
-
- LINK = wlink
- LNKOPT = op stub=wstubq,caseexact #debug all
-
- #system
-
- system = dos4g
-
- .EXTENSIONS:
- .EXTENSIONS: .exe .lib .obj .c
-
- .BEFORE
- @set INCLUDE=.;$(%watcom)\h
- @set DOS4G=QUIET
-
- #implicit rules
-
- .c.obj :
- $(CC) $^& $(CFLAGS)
-
- #executable files
-
- exes = vmsc.exe
-
- # explicit rules
-
- all : $(exes) .symbolic
- @%null
-
- mix : $(mix_exes) .symbolic
- @%null
-
- vmsc.exe : vmsc.obj getopt.obj hpwd.obj .PRECIOUS
- wlink $(LNKOPT) system $(system) file vmsc,getopt,hpwd name vmsc
-
- vmsc.obj : vmsc.c mytypes.h getopt.h sysuaf.h hpwd.h
-
- getopt.obj : getopt.c
-
- hpwd.obj : hpwd.c hpwd.h mytypes.h
-